Use "java applet|java applet" in a sentence

1. System and method for controlling applet access

애플릿 액세스 제어 시스템 및 방법

2. The GNU Compiler for Java (GCJ) is a free compiler for the Java programming language.

GCJ(GNU Compiler for Java)는 자바 프로그래밍 언어를 위한 자유 소프트웨어 컴파일러이며 GNU 컴파일러 모음의 일부이기도 하다.

3. drive-by download means two things, each concerning the unintended download of computer software from the Internet: Downloads which a person has authorized but without understanding the consequences (e.g. downloads which install an unknown or counterfeit executable program, ActiveX component, or Java applet) automatically.

드라이브 바이 다운로드 (Drive-by download)는 인터넷에서 컴퓨터 소프트웨어의 의도되지 않은 다운로드와 관련해서, 각각 다음과 같은 두 가지를 의미한다: 결과에 대한 이해가 없는 개인이 허가한 다운로드들(예를 들면 알려지지 않은 위조 실행 파일이나, 액티브X 컴포넌트 또는 자바 애플릿).

4. JNDI (Java Naming and Directory Interface) organizes its names into a hierarchy.

JNDI(Java Naming and Directory Interface)는 디렉터리 서비스에서 제공하는 데이터 및 객체를 발견(discover)하고 참고(lookup)하기 위한 자바 API다.

5. These directories are: src/main/java, src/main/resources, src/test/java and src/test/resources. build.gradle apply plugin: 'java' Running gradle build will result in > gradle build :compileJava :processResources :classes :jar :assemble :compileTestJava :processTestResources :testClasses :test :check :build BUILD SUCCESSFUL The Java plugin emulates many of the expected Maven lifecycles as tasks in the directed acyclic graph of dependencies for the inputs and outputs of each task.

이 디렉터리들은 src/main/java, src/main/resources, src/test/java, src/test/resources이다. build.gradle apply plugin: 'java' gradle build을 실행하면 다음과 같이 출력된다: > gradle build :compileJava :processResources :classes :jar :assemble :compileTestJava :processTestResources :testClasses :test :check :build BUILD SUCCESSFUL “Gradle Releases”.

6. Google Web Toolkit (GWT) allows developers to create Ajax applications in the Java programming language.

구글 웹 툴킷(GWT)은 개발자가 Ajax 응용 프로그램들을 자바 프로그래밍 언어로 개발할 수 있게 도와 준다.

7. Check this to active the display title bar. This is probably only useful for applet displays. The bar is only visible if the display is large enough

제목줄 표시를 활성화 할려면 이것을 선택하세요. 이는 applet 표시하는것에만 유용합니다. 이 제목줄은 화면이 충분히 커야만 보여질 것입니다

8. Neo4j is implemented in Java and accessible from software written in other languages using the Cypher Query Language through a transactional HTTP endpoint, or through the binary "bolt" protocol.

Neo4j는 자바로 구현되어 있으며 트랜잭셔널 HTTP 엔드포인트를 경유하거나 바이너리 볼트(bolt) 프로토콜을 통해 Cypher Query Language를 사용하여 다른 언어로 작성된 소프트웨어로부터 접근이 가능하다.

9. In Java, access to a null reference triggers a NullPointerException (NPE), which can be caught by error handling code, but the preferred practice is to ensure that such exceptions never occur.

Java에서, 널 참조에 대한 접근은 NullPointerException (NPE)을 초래하는데, 이것은 오류 처리 코드에 의해 잡힐 수 있지만 선호되는 것은 이러한 예외들이 절대 일어나지 않게 하는 것이다. .NET에서, 널 참조에 대한 접근은 NullReferenceException가 던져지는 결과를 초래한다.

10. When the JVM is started, three class loaders are used: Bootstrap class loader Extensions class loader System class loader The bootstrap class loader loads the core Java libraries located in the <JAVA_HOME>/jre/lib directory.

JVM이 시작되면 3개의 클래스 로더들이 사용된다: 부트스트랩 클래스 로더 확장 클래스 로더 시스템 클래스 로더 부트스트랩 클래스 로더는 &lt;JAVA_HOME&gt;/jre/lib 디렉터리에 위치한 핵심 자바 라이브러리들을 불러들인다.